home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Business Assistant
/
Business Assistant.iso
/
acctg
/
pcacct1
/
printman.bas
< prev
next >
Wrap
BASIC Source File
|
1980-01-01
|
768b
|
28 lines
1000 CLS
1050 PRINT "This program prints the PC-Accounting Manual out on paper"
1100 PRINT "Make sure your printer is on with plenty of paper."
1150 PRINT "Put the PC-Accounting disk in the defalt disk drive"
1200 PRINT "What page number do you want to start printing at?"
1210 INPUT P
1215 OPEN "I",#1,"MAN"
1220 FOR T = 1 TO 5
1230 LPRINT ""
1240 NEXT T
1400 PG = 1
1410 FOR T = 1 TO 55
1415 IF EOF(1) THEN END
1420 LINE INPUT #1,A$
1430 IF PG >= P THEN LPRINT TAB(7) A$
1440 NEXT T
1445 IF PG >= P THEN LPRINT ""
1450 IF PG >= P THEN LPRINT TAB(35) PG
1460 FOR T = 1 TO 9
1470 IF PG >= P THEN LPRINT ""
1480 NEXT T
1500 PG = PG + 1
1510 GOTO 1410
P THEN LPRINT TAB(35) PG
1460 FOR T = 1 TO 9
1470 IF PG >= P THEN LPRINT ""
1480 NEXT T
1